home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6584 / 6584.xpi / chrome / flashvideodownloader / content / adult_notification.js next >
Text File  |  2009-09-28  |  1KB  |  39 lines

  1. var FlashVDAdultWarning = {
  2.  
  3.     lictext : 
  4. "I am at least 18 years of age and have the legal right to possess adult material in my community. \
  5. I do not find images of nude adults, adults engaged in sexual acts, or other \
  6. sexual material to be offensive or objectionable. \
  7. \n\n\
  8. I understand the standards and laws of the community, site and computer to which I am transporting this \
  9. material, and am solely responsible for my actions. If I use these services in \
  10. violation of the above agreement, I understand I may be in violation of local and/or federal laws and \
  11. am solely responsible for my actions.",
  12.  
  13.     options : null,
  14.  
  15.     init : function()
  16.     {
  17.         document.getElementById("lic").value = FlashVDAdultWarning.lictext;
  18.  
  19.         this.options = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefService).getBranch("FlashVD.options.");
  20.     },
  21.  
  22.     on_accept : function()
  23.     {
  24.         window.arguments[0].result = true;            
  25.     },
  26.     
  27.     set_adult_notification : function () {
  28.         try
  29.         {
  30.             var adult_notification = !window.document.getElementById('adult_notification').checked;
  31.             this.options.setBoolPref ("adult_notification", adult_notification);
  32.         }
  33.         catch(e)
  34.         {
  35.             //alert(e);
  36.         }
  37.     }
  38. }
  39.